home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / btrees2.arc / BTGETSP.C < prev    next >
Text File  |  1984-12-14  |  270b  |  15 lines

  1. /*    btgetsp        */
  2. #include <stdio.h>
  3. #include <btextern.h>
  4. int btgetsp (filhand)
  5. int filhand;
  6.  
  7. /*    gets a node number for a new node    */
  8. {
  9.     ip2 = btfilar[filhand].infobuf + 2; 
  10.     return (++*ip2);    /* increment the current value */
  11. }    
  12. /*   end of btgetsp    */
  13.  
  14.  
  15.